home *** CD-ROM | disk | FTP | other *** search
- /* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is The JavaScript Debugger.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998-2003
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Robert Ginda, <rginda@netscape.com>, original author
- * Daniel Glazman (glazman@disruptive-innovations.com), on behalf of Lindows.com
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either the GNU General Public License Version 2 or later (the "GPL"), or
- * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-
- const IOSERVICE_CTRID = "@mozilla.org/network/io-service;1";
- const cnsIIOService = Components.interfaces.nsIIOService;
- const SIS_CTRID = "@mozilla.org/scriptableinputstream;1"
- const cnsIScriptableInputStream = Components.interfaces.nsIScriptableInputStream;
- const cnsIChannel = Components.interfaces.nsIChannel;
- const cnsIInputStream = Components.interfaces.nsIInputStream;
- const cnsIRequest = Components.interfaces.nsIRequest;
- const cnsIDirectoryListing = Components.interfaces.nsIDirectoryListing;
-
- var gError;
- var gCurrentChannel;
-
- const FTP_DEL = 0;
- const FTP_MKDIR = 1;
- const FTP_RMDIR = 2;
- const FTP_RENAME = 3;
-
- function progressListener(aChannel, aAction, aUrl, aNewName)
- {
- this.startup(aChannel, aAction, aUrl, aNewName);
- }
-
- progressListener.prototype =
- {
-
- mChannel : null,
- mAction : null,
- mUrl : null,
- mNewName : null,
-
- startup : function(aChannel, aAction, aUrl, aNewName)
- {
- mChannel = aChannel;
- mAction = aAction;
- mUrl = aUrl;
- mNewName = aNewName;
- },
-
- onStatus : function(aRequest, aContext, aStatus, aStatusArg)
- {
- if (aStatus == 4915228)
- {
- if (!gError)
- {
- switch (mAction)
- {
- case FTP_DEL:
- case FTP_RMDIR:
- DeleteSelectedItem();
- break;
- case FTP_MKDIR:
- AppendNewDir(mUrl, mNewName);
- break;
- case FTP_RENAME:
- RenameTo(mNewName);
- break;
- default:
- break;
- }
- }
- // close the channel
- mChannel.cancel(0x804b0002); // NS_BINDING_ABORTED
- EndFtpRequest();
- }
- },
-
- onProgress : function(aRequest, aContext,
- aProgress, aProgressMax)
- {
- },
-
- QueryInterface : function(aIID)
- {
- if (aIID.equals(Components.interfaces.nsIProgressEventSink)
- || aIID.equals(Components.interfaces.nsIInterfaceRequestor)
- || aIID.equals(Components.interfaces.nsISupports)
- || aIID.equals(Components.interfaces.nsISupportsWeakReference)
- || aIID.equals(Components.interfaces.nsIPrompt))
- return this;
- throw Components.results.NS_NOINTERFACE;
- },
-
- getInterface : function(aIID)
- {
- if (aIID.equals(Components.interfaces.nsIProgressEventSink)
- || aIID.equals(Components.interfaces.nsIInterfaceRequestor)
- || aIID.equals(Components.interfaces.nsISupports)
- || aIID.equals(Components.interfaces.nsISupportsWeakReference)
- || aIID.equals(Components.interfaces.nsIPrompt))
- return this;
- throw Components.results.NS_NOINTERFACE;
- },
-
- // nsIPrompt
- alert : function(dlgTitle, text)
- {
- var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
- .getService(Components.interfaces.nsIPromptService);
- promptService.alert(window, dlgTitle, text);
- gError = true;
- },
- alertCheck : function(dialogTitle, text, checkBoxLabel, checkObj)
- {
- },
- confirm : function(dlgTitle, text)
- {
- },
- confirmCheck : function(dlgTitle, text, checkBoxLabel, checkObj)
- {
- },
- confirmEx : function(dlgTitle, text, btnFlags, btn0Title, btn1Title, btn2Title, checkBoxLabel, checkVal)
- {
- },
- prompt : function(dlgTitle, text, inoutText, checkBoxLabel, checkObj)
- {
- },
- promptPassword : function(dlgTitle, text, pwObj, checkBoxLabel, savePWObj)
- {
- },
- promptUsernameAndPassword : function(dlgTitle, text, userObj, pwObj, checkBoxLabel, savePWObj)
- {
- },
- select : function(dlgTitle, text, count, selectList, outSelection)
- {
- },
- }
-
-
- function _getChannelForURL (url)
- {
- var serv = Components.classes[IOSERVICE_CTRID].getService(cnsIIOService);
- if (!serv)
- return null;
-
- return serv.newChannel(url, null, null);
-
- }
-
- function StreamListener(channel, url, observer)
- {
- this.channel = channel;
- this.data = "";
- this.url = url;
- this.observer = observer;
- }
-
- StreamListener.prototype.onStartRequest =
- function (request, context)
- {
- }
-
- StreamListener.prototype.onStopRequest =
- function (request, context, status)
- {
- // close the channel
- this.channel.cancel(0x804b0002); // NS_BINDING_ABORTED
-
- if (typeof this.observer.onComplete == "function")
- this.observer.onComplete (this.data, this.url, status);
- }
-
- StreamListener.prototype.onDataAvailable =
- function (request, context, inStr, sourceOffset, count)
- {
- // dump ("onDataAvailable(): " + count + "\n");
- // sometimes the inStr changes between onDataAvailable calls, so we
- // can't cache it.
- var sis =
- Components.classes[SIS_CTRID].createInstance(cnsIScriptableInputStream);
- sis.init(inStr);
- this.data += sis.read(count);
- }
-
-
-
- function loadURLAsync (url, observer)
- {
- var chan = _getChannelForURL (url);
- chan.loadFlags |= cnsIRequest.LOAD_BYPASS_CACHE;
-
- var directoryListing = chan.QueryInterface(cnsIDirectoryListing);
- directoryListing.listFormat = cnsIDirectoryListing.FORMAT_HTTP_INDEX;
-
- gCurrentChannel = chan;
-
- return chan.asyncOpen (new StreamListener (chan, url, observer), null);
- }
-
- function deleteURLAsync (url)
- {
- var chan = _getChannelForURL (url);
- chan.loadFlags |= cnsIRequest.LOAD_BYPASS_CACHE;
-
- chan instanceof Components.interfaces.nsIFTPChannel;
- var p = new progressListener(chan, FTP_DEL, url, "")
- chan.notificationCallbacks = p.QueryInterface(Components.interfaces.nsIInterfaceRequestor) ;
- chan.deleteFile();
- gError = false;
-
- gCurrentChannel = chan;
-
- return chan.asyncOpen (null, null);
- }
-
- function removeDirURLAsync (url)
- {
- var chan = _getChannelForURL (url);
- chan.loadFlags |= cnsIRequest.LOAD_BYPASS_CACHE;
-
- chan instanceof Components.interfaces.nsIFTPChannel;
- var p = new progressListener(chan, FTP_RMDIR, url, "")
- chan.notificationCallbacks = p.QueryInterface(Components.interfaces.nsIInterfaceRequestor) ;
- chan.removeDirectory();
- gError = false;
-
- gCurrentChannel = chan;
-
- return chan.asyncOpen (null, null);
- }
-
- function createDirURLAsync (url, aDirName)
- {
- var chan = _getChannelForURL (url);
- chan.loadFlags |= cnsIRequest.LOAD_BYPASS_CACHE;
-
- chan instanceof Components.interfaces.nsIFTPChannel;
- var p = new progressListener(chan, FTP_MKDIR, url, aDirName)
- chan.notificationCallbacks = p.QueryInterface(Components.interfaces.nsIInterfaceRequestor) ;
- chan.createDirectory();
- gError = false;
-
- gCurrentChannel = chan;
-
- return chan.asyncOpen (null, null);
- }
-
- function renameURLAsync(url, aName)
- {
- var chan = _getChannelForURL (url);
- chan.loadFlags |= cnsIRequest.LOAD_BYPASS_CACHE;
-
- chan instanceof Components.interfaces.nsIFTPChannel;
- var p = new progressListener(chan, FTP_RENAME, url, aName)
- chan.notificationCallbacks = p.QueryInterface(Components.interfaces.nsIInterfaceRequestor) ;
- chan.renameTo(aName);
- gError = false;
-
- gCurrentChannel = chan;
-
- return chan.asyncOpen (null, null);
- }
-
- function loadURL(url, caller)
- {
- function onComplete(data, url, status)
- {
- if (status == Components.results.NS_OK)
- {
- if (caller.parseData)
- caller.parseData(data, caller.rqData);
- if (caller.endCallback)
- caller.endCallback();
- }
- else
- caller.errorCallback(url, status);
- };
-
- loadURLAsync (url, { onComplete: onComplete });
- }
-
- function DropFtpConnection()
- {
- if (gCurrentChannel)
- gCurrentChannel.cancel(0x804b0002); // NS_BINDING_ABORTED
- }
-
- function ForgetAboutLastFtpRequest()
- {
- gCurrentChannel = null;
- }
-
-